ListBox.Selected

Indicates if the passed Row is selected or not. Selected is True if the row passed is selected.

Syntax

Selected( Row ) as Boolean


Parameters

Row

Integer


Notes

This property can be used to determine if the row is selected and to select the row. For example,

Listbox1.Selected(1)= True

selects the second item in the first column.